From 6c703f4ab94369d580102414025273e16197bc52 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 25 May 1993 15:36:47 +0000 Subject: [PATCH] (Fx_open_connection): Set xrm_option correctly. --- src/xfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xfns.c b/src/xfns.c index a4fb4f2b8e4..93707bca6a9 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -3476,7 +3476,7 @@ arg XRM_STRING is a string of resources in xrdb format.") if (!EQ (xrm_string, Qnil)) { CHECK_STRING (xrm_string, 1); - xrm_option = (unsigned char *) XSTRING (xrm_string); + xrm_option = (unsigned char *) XSTRING (xrm_string)->data; } else xrm_option = (unsigned char *) 0; -- 2.30.2